home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ for Dummies (3rd Edition)
/
C_FD.iso
/
C__FD.EXE
/
C++ FD
/
CHAP08
/
STUDENT.H
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-02
|
212 b
|
11 lines
// Student.h
class Student
{
public:
int semesterHours; //hours earned toward graduation
float gpa;
//add a completed course to the record
float addCourse(int hours, float grade);
};